home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
United Public Domain Gold 3
/
United Public Domain Gold 3.iso
/
games
/
pg369.dms
/
pg369.adf
/
Intro.AMOS
/
Intro.amosSourceCode
Wrap
AMOS Source Code
|
1992-02-21
|
796b
|
44 lines
' title program for Knightwoode
' poor i know, but it does the job.
'
Screen Open 0,320,256,32,Lowres
Paper 0
Load Iff "adventure:titlegraphics/tscreen6"
Hide
Flash Off
Wait 200
Fade 7
Wait 60
Cls
Load Iff "adventure:titlegraphics/tscreen7"
Clear Key
Gosub HOLD
Cls
Curs Off
'
MAIN:
Load Iff "adventure:titlegraphics/tscreen1"
Gosub HOLD
Load Iff "adventure:titlegraphics/tscreen2"
Gosub HOLD
Load Iff "adventure:titlegraphics/tscreen3"
Gosub HOLD
Load Iff "adventure:locationgraphics/46 gates"
Gosub HOLD
Load Iff "adventure:titlegraphics/tscreen4"
Gosub HOLD
Load Iff "adventure:titlegraphics/tscreen5"
Gosub HOLD
'
ACTION:
Run "adventure:Knightwoode.AMOS"
'
HOLD:
Do
If Key State(69)=True Then Goto ACTION
If Inkey$<>"" Then Exit
M=Mouse Click
If M=1 Then Exit
Loop
Cls
Return